home *** CD-ROM | disk | FTP | other *** search
/ Australian Personal Computer 2000 July / CD 3 / redhat-6.2.iso / RedHat / instimage / usr / lib / python1.5 / site-packages / gnome / help.py < prev    next >
Encoding:
Python Source  |  2000-02-16  |  418 b   |  15 lines

  1. import _gnome
  2.  
  3. if not gnome.gnomelib_init_called:
  4.     _gnome.gnomelib_init(gnome.app_id, gnome.app_version)
  5.     gnome.gnomelib_init_called = 1
  6.  
  7. def file_find_file(app, path):
  8.     return _gnome.gnome_help_file_find_file(app, path)
  9. def file_path(app, path):
  10.     return _gnome.gnome_help_file_path(app, path)
  11. def display(ref_name, ref_path):
  12.     _gnome.gnome_help_display(ref_name, ref_path)
  13. def goto(url):
  14.     _gnome.gnome_help_goto(url)
  15.